home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 March
/
EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso
/
earcd
/
editor
/
blksedtr.lha
/
BED
/
Rexx
/
CountWords.bed
< prev
next >
Wrap
Text File
|
1996-01-28
|
376b
|
30 lines
/*
** $VER: CountWords.bed 1.0 (02.01.96)
**
** Count the number of words in the document
*/
OPTIONS RESULTS
SetDisplayLock ON
SetInputLock ON
SetBookmark 0
SetStatusBar "Counting..."
count = 0
MoveSOF
DO UNTIL RC ~= 0
MoveNextWord
count = count + 1
END
MoveBookmark 0
ClearBookmark 0
SetDisplayLock OFF
SetInputLock OFF
SetStatusBar "Counted " || count || " words"